home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 10869 / 10869.xpi / content / default.css next >
Cascading Style Sheet File  |  2009-09-01  |  891b  |  78 lines

  1. body {
  2.   font-family: sans-serif;
  3. }
  4.  
  5. .prop {
  6.   font-weight: bold;
  7. }
  8.  
  9. .null {
  10.   color: red;
  11. }
  12.  
  13. .bool {
  14.   color: blue;
  15. }
  16.  
  17. .num {
  18.   color: blue;
  19. }
  20.  
  21. .string {
  22.   color: green;
  23. }
  24.  
  25. .collapser {
  26.   position: absolute;
  27.   left: -1em;
  28.   cursor: pointer;
  29. }
  30.  
  31. li {
  32.   position: relative;
  33. }
  34.  
  35. li:after {
  36.   content: ',';
  37. }
  38.  
  39. li:last-child:after {
  40.   content: '';
  41. }
  42.  
  43. #error {
  44.   -moz-border-radius: 8px;
  45.   border: 1px solid #970000;
  46.   background-color: #F7E8E8;
  47.   margin: .5em;
  48.   padding: .5em;
  49. }
  50.  
  51. .errormessage {
  52.   font-family: monospace;  
  53. }
  54.  
  55. #json {
  56.   font-family: monospace;
  57.   font-size: 1.1em;
  58. }
  59.  
  60. ul {
  61.   list-style: none;
  62.   margin: 0 0 0 2em;
  63.   padding: 0;
  64. }
  65.  
  66. h1 {
  67.   font-size: 1.2em;
  68. }
  69.  
  70. /* Indent JSON when there's a callback. */
  71. .callback + #json {
  72.   padding-left: 1em;
  73. }
  74.  
  75. .callback {
  76.   font-family: monospace;
  77.   color: #A52A2A;
  78. }